home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / SciAn / src / ScianScales.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  614b  |  27 lines

  1. /*  ScianScales.h
  2.  *  2/4/93
  3.  */
  4.  
  5. #define SO_LEFT        0   /* scale is to left of control */
  6. #define SO_RIGHT    1   /* scale is to right of control */
  7. #define SO_BOTTOM    2   /* scale is below control */
  8. #define SO_TOP        3   /* scale is above control */
  9.  
  10. /* function prototypes */
  11. #ifdef PROTO
  12. ObjPtr NewScale(int, int, int, int, int, Bool, char *);
  13. void SetScaleRange(ObjPtr, real, real);
  14. void SetScaleStepPixels(ObjPtr, int);
  15. void SetScaleFormat(ObjPtr, char *);
  16. void LinkScale(ObjPtr, ObjPtr);
  17.  
  18. #else
  19. ObjPtr NewScale();
  20. void SetScaleRange();
  21. void SetScaleStepPixels();
  22. void SetScaleFormat();
  23. void LinkScale();
  24.  
  25. #endif
  26.  
  27.